What is the difference between `Synclock syncroot` and `SyncLock Me`?
Posted
by Rising Star
on Stack Overflow
See other posts from Stack Overflow
or by Rising Star
Published on 2010-05-18T15:10:19Z
Indexed on
2010/05/18
23:10 UTC
Read the original article
Hit count: 145
vb.Net multithreading question:
What is the difference between
SyncLock syncRoot
''# Do Stuff
End SyncLock
-and-
SyncLock Me
''# Do Stuff
End SyncLock
© Stack Overflow or respective owner